home *** CD-ROM | disk | FTP | other *** search
/ Clickx 47 / Clickx 47.iso / assets / software / switchproxy.xpi / chrome / switchproxy.jar / content / options / options.xul < prev   
Encoding:
Extensible Markup Language  |  2006-04-11  |  1.5 KB  |  34 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog SYSTEM "chrome://switchproxy/locale/locale.dtd">
  6.  
  7. <dialog buttons="accept"
  8.                 id="switchproxy-options-dialog"
  9.                 ondialogaccept="return saveOptions();"
  10.                 onload="initOptions()"
  11.                 title="Switch Proxy Options"
  12.                 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  13.     
  14.     <script type="application/x-javascript" src="chrome://switchproxy/content/globals.js"></script>
  15.     <script type="application/x-javascript" src="chrome://switchproxy/content/options/options.js"></script>
  16.     <script type="application/x-javascript" src="chrome://switchproxy/content/proxy.js"></script>
  17.     
  18.     <groupbox style="width: 200px;">
  19.         <caption label="&prefs.general;"/>
  20.         <checkbox id="switchproxy.display.toolbar" label="&prefs.general.toolbar;" checked="true" />
  21.         <checkbox id="switchproxy.display.context" label="&prefs.general.context;" checked="true" />
  22.         <checkbox id="switchproxy.display.statusbar" label="Show in Status Bar" checked="true" />
  23.         <!-- <checkbox id="switchproxy.tabs.manager" label="Allow the use of different proxies in different tabs & windows." checked="true" /> -->
  24.     </groupbox>
  25.     
  26.     <groupbox style="width: 200px;">
  27.         <caption label="&prefs.switch;"/>
  28.         <checkbox id="switchproxy.clear.cookies" label="&prefs.switch.cookies;" checked="false" />
  29.         <checkbox id="switchproxy.reload.tab" label="&prefs.switch.refresh;" checked="true" />
  30.     </groupbox>
  31.     
  32.     <button label="&common.manage.label;" oncommand="switchproxy_openProxyManager()" />
  33. </dialog>
  34.